home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
SPACE 2
/
SPACE - Library 2 - Volume 1.iso
/
telecom
/
46
/
pascal
/
peektest.pas
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
1986-08-15
|
269 b
|
16 lines
PROGRAM peekpoke_test;
VAR
ssp: long_integer;
{$I peekpoke.pas}
FUNCTION super( sp: long_integer ): long_integer;
GEMDOS( $20 );
BEGIN
ssp := super(0);
writeln( 'peek of $4ba is ', lpeek($4ba) );
ssp := super(ssp);
END.